home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb / foo / readline / Makefile < prev    next >
Encoding:
Makefile  |  1990-02-08  |  3.4 KB  |  115 lines

  1. ## -*- text -*- ####################################################
  2. #                                   #
  3. # Makefile for readline and history libraries.               #
  4. #                                   #
  5. ####################################################################
  6.  
  7. # Here is a rule for making .o files from .c files that doesn't force
  8. # the type of the machine (like -sun3) into the flags.
  9. .c.o:
  10.     $(CC) -c $(CFLAGS) $(LOCAL_INCLUDES) $(CPPFLAGS) $*.c
  11.  
  12. # Destination installation directory.  The libraries are copied to DESTDIR
  13. # when you do a `make install', and the header files to INCDIR/readline/*.h.
  14. DESTDIR = /usr/gnu/lib
  15. INCDIR = /usr/gnu/include
  16.  
  17. # Define TYPES as -DVOID_SIGHANDLER if your operating system uses
  18. # a return type of "void" for signal handlers.
  19. TYPES = -DVOID_SIGHANDLER
  20.  
  21. # Define SYSV as -DSYSV if you are using a System V operating system.
  22. #SYSV = -DSYSV
  23.  
  24. # HP-UX compilation requires the BSD library.
  25. #LOCAL_LIBS = -lBSD
  26.  
  27. # Xenix compilation requires -ldir -lx
  28. #LOCAL_LIBS = -ldir -lx
  29.  
  30. # Comment this out if you don't think that anyone will ever desire
  31. # the vi line editing mode and features.
  32. READLINE_DEFINES = -DVI_MODE
  33.  
  34. DEBUG_FLAGS = -g
  35. LDFLAGS = $(DEBUG_FLAGS) 
  36. CFLAGS = $(DEBUG_FLAGS) $(TYPE) $(SYSV) -I.
  37.  
  38. # A good alternative is gcc -traditional.
  39. #CC = gcc -traditional
  40. CC = cc
  41. RANLIB = /usr/bin/ranlib
  42. AR = ar
  43. RM = rm
  44. CP = cp
  45.  
  46. LOCAL_INCLUDES = -I../
  47.  
  48. CSOURCES = readline.c history.c funmap.c keymaps.c vi_mode.c \
  49.        emacs_keymap.c vi_keymap.c keymaps.c
  50.  
  51. HSOURCES = readline.h chardefs.h history.h keymaps.h
  52. SOURCES  = $(CSOURCES) $(HSOURCES)
  53.  
  54. DOCUMENTATION = readline.texinfo inc-readline.texinfo \
  55.         history.texinfo inc-history.texinfo
  56.  
  57. SUPPORT = COPYING Makefile $(DOCUMENTATION) ChangeLog
  58.  
  59. THINGS_TO_TAR = $(SOURCES) $(SUPPORT)
  60.  
  61. ##########################################################################
  62.  
  63. all: libreadline.a
  64.  
  65. libreadline.a:    readline.o history.o funmap.o keymaps.o
  66.         $(RM) -f libreadline.a
  67.         $(AR) clq libreadline.a readline.o history.o funmap.o keymaps.o
  68.         if [ -f $(RANLIB) ]; then $(RANLIB) libreadline.a; fi
  69.  
  70. readline.o:    readline.h chardefs.h  keymaps.h history.h readline.c vi_mode.c
  71.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \
  72.         $(LOCAL_INCLUDES) $*.c
  73.  
  74. history.o:    history.c history.h
  75.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \
  76.         $(LOCAL_INCLUDES) $*.c
  77.  
  78. funmap.o:    readline.h
  79.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \
  80.         $(LOCAL_INCLUDES) $*.c
  81.  
  82. keymaps.o:    emacs_keymap.c vi_keymap.c keymaps.h chardefs.h keymaps.c
  83.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \
  84.          $(LOCAL_INCLUDES) $*.c
  85.  
  86. libtest:    libreadline.a libtest.c
  87.         $(CC) -o libtest $(CFLAGS) $(CPPFLAGS) -L. libtest.c -lreadline -ltermcap
  88.  
  89. readline: readline.c history.o keymaps.o funmap.o readline.h chardefs.h
  90.     $(CC) $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \
  91.         $(LOCAL_INCLUDES) -DTEST -o readline readline.c funmap.o \
  92.          keymaps.o history.o -L. -ltermcap
  93.  
  94. readline.tar:    $(THINGS_TO_TAR)
  95.         tar -cf readline.tar $(THINGS_TO_TAR)
  96.  
  97. readline.tar.Z:    readline.tar
  98.         compress -f readline.tar
  99.  
  100. install:    $(DESTDIR)/libreadline.a includes
  101.  
  102. includes:
  103.         if [ ! -r $(INCDIR)/readline ]; then\
  104.          mkdir $(INCDIR)/readline;\
  105.          chmod a+r $(INCDIR)/readline;\
  106.         fi
  107.         $(CP) readline.h keymaps.h chardefs.h $(INCDIR)/readline/
  108. clean:
  109.         rm -f *.o *.a *.log *.cp *.tp *.vr *.fn *.aux *.pg *.toc
  110.  
  111. $(DESTDIR)/libreadline.a: libreadline.a
  112.         -mv $(DESTDIR)/libreadline.a $(DESTDIR)/libreadline.old
  113.         cp libreadline.a $(DESTDIR)/libreadline.a
  114.         $(RANLIB) -t $(DESTDIR)/libreadline.a
  115.